home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / doom / suckmods.zip / SUCKMODS.ZIP / suck05 / src / log.qc < prev    next >
Text File  |  1997-05-09  |  650b  |  37 lines

  1.  
  2. void(entity targ, entity attacker, string what) LogPlayerDMDeath =
  3. {
  4.     // note embedded tabs in the next string
  5.     dprint("LOG:    DEATH    ");
  6.     dprint(targ.netname);
  7.     dprint("/");
  8.     dprint(ftos(targ.frags));
  9.     dprint("    ");
  10.     dprint(attacker.netname);
  11.     dprint("/");
  12.     dprint(ftos(attacker.frags));
  13.     dprint("    ");
  14.     dprint(what);
  15.     dprint("\n");
  16. };
  17.  
  18. void (entity targ, string what) LogPlayerDeath =
  19. {
  20.     dprint("LOG:    DEATH    ");
  21.     dprint(targ.netname);
  22.     dprint("/");
  23.     dprint(ftos(targ.frags));
  24.     dprint("    ");
  25.     dprint(what);
  26.     dprint("\n");
  27. };
  28.  
  29. void (entity who, string what) LogMsg =
  30. {
  31.     dprint("LOG:    ");
  32.     dprint(what);
  33.     dprint("    ");
  34.     dprint(who.netname);
  35.     dprint("\n");
  36. };
  37.